home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 2
/
Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso
/
Aminet
/
misc
/
amag
/
sh9301e.lha
/
Maxon-CPP-Demo
/
Include
/
stddef.h
< prev
next >
Wrap
C/C++ Source or Header
|
1993-02-17
|
217b
|
16 lines
#ifndef _INCLUDE_STDDEF_H
#define _INCLUDE_STDDEF_H
#ifndef NULL
#define NULL 0
#endif
#define offsetof(s,m) ((unsigned)&((s*)NULL)->m)
typedef unsigned size_t;
typedef int ptrdiff_t;
typedef int wchar_t;
#endif